crypto/tls.clientHandshakeState.session (field)
15 uses
crypto/tls (current package)
handshake_client.go#L40: session *SessionState // the session being resumed
handshake_client.go#L375: session: session,
handshake_client.go#L556: if hs.session == nil && hs.hello.sessionId != nil && bytes.Equal(hs.hello.sessionId, hs.serverHello.sessionId) {
handshake_client.go#L884: return hs.session != nil && hs.hello.sessionId != nil &&
handshake_client.go#L943: if hs.session.version != c.vers {
handshake_client.go#L948: if hs.session.cipherSuite != hs.suite.id {
handshake_client.go#L954: if hs.session.extMasterSecret != hs.serverHello.extendedMasterSecret {
handshake_client.go#L960: hs.masterSecret = hs.session.secret
handshake_client.go#L961: c.extMasterSecret = hs.session.extMasterSecret
handshake_client.go#L962: c.peerCertificates = hs.session.peerCertificates
handshake_client.go#L963: c.verifiedChains = hs.session.verifiedChains
handshake_client.go#L964: c.ocspResponse = hs.session.ocspResponse
handshake_client.go#L967: if len(c.scts) == 0 && len(hs.session.scts) != 0 {
handshake_client.go#L968: c.scts = hs.session.scts
handshake_client.go#L970: c.curveID = hs.session.curveID
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)